BigscreenPlayer provides Audio Description (AD) support for accessible media playback. This document details the two implementations.
Implementations
BigscreenPlayer uses two distinct methods for handling AD: a source switching approach and an MSE-specific approach.
1. Source Switching Audio Description (MediaSources)
The MediaSources
module manages AD by accepting separate sources for audio description tracks. This method is used when AD is provided as a distinct media resource.
- Separate Source Management:
MediaSources
accepts a separatemedia.audioDescribed
source, containing URLs and CDNs, distinct from the main media source.- Failover for AD sources occurs independently within this provided source.
- Example: If CDN 'A' in the Audio Description source fails, failover occurs only within that AD source, independently of the main video source. If AD is turned off, and CDN 'A' is present for the main source, it will be available.
- Manifest Switching:
- Enabling or disabling AD triggers the loading of a new manifest from the appropriate URL within the provided AD source.
- This effectively switches between the main and AD audio streams.
2. MSE Strategy-Specific Audio Description (MSEStrategy)
The MSEStrategy
strategy implementation manages AD within the same media stream.
- Track Selection:
- AD tracks are identified within the DASH manifest by their roles and accessibility schemes.
- Currently, a track is identified as AD if it matches the
Broadcast mix AD
descriptor values. These values are:- Role
value
ofalternate
- Accessibility
schemeIdUri
ofurn:tva:metadata:cs:AudioPurposeCS:2007
andvalue
of1
.
- Role
- These values are defined in ETSI TS 103 285 V1.1.1 Technical Specification
Developer API
Audio Described functionality can be interacted with through BigScreenPlayers API, which exposes the following functions:
isAudioDescribedAvailable()
:- Checks if AD tracks are available.
- If the source switching implementation (MediaSources) provides AD, this takes priority.
isAudioDescribedEnabled()
:- Checks if an AD track/source is currently active.
setAudioDescribed(enable)
:- Enables or disables AD.
- Example:
bigScreenPlayer.setAudioDescribed(true)
Priority
If there are separate audioDescribed media sources provided, it will take priority over the MSE specific implementation.